return NXLocalStringFromTable("Operations", "End Editing", NULL, "The operation of ending the editing process and proceding onto some other operation.");
}
- undoChange
{
if ([graphic isEmpty])
[graphicView insertGraphic:graphic];
[graphic prepareFieldEditor];
[NXApp startEditMode];
return [super undoChange];
}
- redoChange
{
/*
* The order of the next two statements is important.
* If endEditMode were sent before resignFieldEditor
* it would send resetCursor to the document which would
* make the window the first responder which would end
* up sending textDidEnd:endChar: to the TextGraphic.
* Then in the next line we'd send resignFieldEditor to
* the TextGraphic even though it had already resigned